home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / B-C / C++ FAQ Reference 1.0 / C++ FAQ Reference 1.0.rsrc / TEXT_1045.txt < prev    next >
Encoding:
Text File  |  1993-06-30  |  353 b   |  1 lines

  1. Except for rather esoteric situations (destroying an object created by the 'placement new operator'), you never need to explicitly call a dtor.  When you derive a class, whether you define a dtor for it or not, the compiler makes sure the dtors for subobjects and base class(es) will be invoked immediately after the derived destructor's body ('{...}').